home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / raytrace / portray / skull.sce < prev    next >
Text File  |  1994-03-19  |  1KB  |  72 lines

  1. include material.lib
  2.  
  3. camera
  4.    look-at (0.0 -5.0 0.0)
  5.    drop-line (0.0 -1.0 0)
  6.    look-from (0 -1 -16)
  7.    depth 0.56
  8.    x-size 0.64
  9.    y-size 0.48
  10.    filter adaptive ;
  11. ;
  12.  
  13. image
  14.    xsize 640
  15.    ysize 480
  16. ;
  17.  
  18. background (0 0 1)
  19.  
  20. object
  21.    primative raw
  22.       file skull.txt
  23.       smooth
  24.       weld 0.0001
  25.       x-rotation 270
  26.       y-rotation 180
  27.    ;
  28.  
  29.    material
  30.       called lead
  31.    ;
  32. ;
  33.  
  34. object
  35.    primative
  36.       plane
  37.         position (-1000 -10 -1000)
  38.         normal (0 1 0)
  39.         x-axis (1 0 0)
  40.         y-axis (0 0 1)
  41.         ;
  42.    material
  43.       shader chequers
  44.          size 3.5
  45.          material-a
  46.             colour (1 1 1)
  47.             ;
  48.          material-b
  49.             colour (0.3 0.3 0.3)
  50.             ;
  51.          ;
  52.       ;
  53.    ;
  54.  
  55.  
  56. object
  57.    primative cylinder
  58.       from (0 -10 0)
  59.       to   (0 -5 0)
  60.       radius 3.0
  61.       capped
  62.       ;
  63.    material
  64.       called blue-marble ;
  65.    ;
  66.  
  67.  
  68. light
  69.    position (-1000 1000 -4000)
  70.    colour (1 1 1)
  71.    ;
  72.